ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Your version: XXA150061R

This page concerns the 25 + version of WINDEV, WEBDEV and WINDEV Mobile. Update your version.
Help / WLanguage / Managing databases / HFSQL / HFSQL Client/Server functions
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
Returns information about the specified group of users. This information is automatically assigned to user group management variables.
Versions 17 and later
iPhone/iPad This function is now available for iPhone/iPad applications.
Versions 18 and later
Universal Windows 10 App This function is now available in Windows Store apps mode.
Versions 21 and later
Universal Windows 10 App This function is now available for Universal Windows 10 apps.
Versions 22 and later
Android Widget This function is now available in Android widget mode.
WINDEVJava This function is now available for Java applications.
Android This function is now available for Android applications.
Example
// Describe the connection
MyConnection is Connection
 
// Open the connection
MyConnection.OpenConnection()
// Associate the data file with the connection
Customer.ChangeConnection(MyConnection)
...
// Find the characteristics of a group
Res is boolean
Res = MyConnection.InfoGroup("Test_Group")
IF Res = True THEN
Trace("Structure of the group updated")
Trace("Name of the group: " + HGroup.Name)
Trace("Description of the group: " + HGroup.Description)
Trace("Users of the group: " + HGroup.Users)
END
Syntax
<Result> = <Connection>.InfoGroup(<Group>)
<Result>: Boolean
  • True if the information regarding the group was read,
  • False if an error occurred. HErrorInfo is used to identify the error.
Remark: An "Unknown group" error will be returned by HErrorInfo if the current user has no rights to see the users (hRightsSeeUser constant). These rights can be defined using <Connection variable>.ModifyServerRights.
<Connection>: Connection variable
Name of the Connection variable that describes the connection to use.
<Group>: Character string
Name of group of users to manage.
Component: wd290hf.dll
Minimum version required
  • Version 25
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 07/06/2023

Send a report | Local help